home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Festival Card Factory
/
Festival Card Factory.iso
/
bmpdlg.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-12-25
|
472b
|
31 lines
unit Bmpdlg;
interface
uses
SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
Forms, StdCtrls, Buttons;
type
TNewBMPForm = class(TForm)
Label1: TLabel;
Label2: TLabel;
WidthEdit: TEdit;
HeightEdit: TEdit;
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
private
{ Private declarations }
public
{ Public declarations }
end;
var
NewBMPForm: TNewBMPForm;
implementation
{$R *.DFM}
end.